home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 2004 #9 / Amiga Plus CD - 2004 - No. 09.iso / amigaplus / tools / amigaos4_only / smbfs / source / include / smb / smb_mount.h < prev    next >
Encoding:
C/C++ Source or Header  |  2004-08-03  |  545 b   |  35 lines

  1. /*
  2.  * $Id: smb_mount.h,v 1.5 2004/05/18 08:39:14 obarthel Exp $
  3.  *
  4.  * :ts=8
  5.  *
  6.  * smb_mount.h
  7.  *
  8.  * Copyright (C) 1995 by Paal-Kr. Engstad and Volker Lendecke
  9.  * Modified for use with AmigaOS by Olaf Barthel <olsen@sourcery.han.de>
  10.  */
  11.  
  12. #ifndef _SMB_MOUNT_H
  13. #define _SMB_MOUNT_H
  14.  
  15. #include <netinet/in.h>
  16.  
  17. struct smb_mount_data
  18. {
  19.   int fd;
  20.  
  21.   struct sockaddr_in addr;
  22.  
  23.   char workgroup_name[17];
  24.   char server_name[17];
  25.   char client_name[17];
  26.   char service[64];
  27.  
  28.   char username[64];
  29.   char password[64];
  30.  
  31.   unsigned short max_xmit;
  32. };
  33.  
  34. #endif
  35.